home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1996 / MacHack 1996.toast / Hacks / Hacks ’95 / NetFractal™ / Fractal 8 source / APane.h < prev    next >
Encoding:
Text File  |  1995-06-24  |  274 b   |  26 lines  |  [TEXT/MPCC]

  1. //    APane.h
  2.  
  3. #pragma once
  4.  
  5.  
  6. #include "LPane.h"
  7.  
  8.  
  9. class APane :
  10.     public LPane
  11. {
  12. public:
  13.     static APane *        CreateAPaneStream(
  14.                             LStream *stream);
  15.     enum {
  16.         class_ID = 'APan'
  17.     };
  18.  
  19.                         APane(
  20.                             LStream *inStream) :
  21.                             LPane(inStream) { }
  22.  
  23.     void                DrawSelf();
  24.  
  25. };
  26.